home *** CD-ROM | disk | FTP | other *** search
- Path: news.rwth-aachen.de!news
- From: georg@acds14.physik.rwth-aachen.de (Georg Kreyerhoff )
- Newsgroups: comp.lang.c
- Subject: Re: HELP! Please! Why doesn't this work
- Date: 23 Feb 1996 18:24:40 GMT
- Organization: RWTH Aachen
- Message-ID: <GEORG.96Feb23192440@acds14.physik.rwth-aachen.de>
- References: <Pine.ULT.3.91a.960215131933.614A-100000@red5.cac.washington.edu>
- NNTP-Posting-Host: acds14.physik.rwth-aachen.de
- In-reply-to: "Aaron T. Baldie"'s message of Thu, 15 Feb 1996 13:37:48 -0800
-
- In article <Pine.ULT.3.91a.960215131933.614A-100000@red5.cac.washington.edu> "Aaron T. Baldie" <atb@cac.washington.edu> writes:
-
- >...
- > solution_array = (char **) malloc(size);
-
- This should read
-
- solution_array = (char**)malloc(size * sizof(char*));
- >...
- gk
-
-
-
-
-